home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 August / EnterCD 08_2005.iso / boot / menus / mboard.scn < prev    next >
Encoding:
Text File  |  2005-04-27  |  3.7 KB  |  66 lines

  1. #
  2. # Mainboard Tools
  3. #
  4. mainboard_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.3                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                             [Mainboard Tools 1/3]                              "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. set textColor = color[yellow on cyan]
  16. print " System Burn-In Test                                                            "
  17. set textColor = color[white on cyan]
  18. print " [F1] Lucifer V1.0                                                              "
  19. print "                                                                                "
  20. set textColor = color[yellow on cyan]
  21. print " CPU Test                                                                       "
  22. set textColor = color[white on cyan]
  23. print " [F2] CPU Burn-in V1.00                 [F3] Mersenne Prime Test V23.5.2        "
  24. print "                                                                                "
  25. set textColor = color[yellow on cyan]
  26. print " Memory Test                                                                    "
  27. set textColor = color[white on cyan]
  28. print " [F4] Memtest86 V3.3                    [F8] DocMem RAM Diagnostic V1.45a       "
  29. print " [F5] Memtest86+ V1.55                  [F9] DocMem RAM Diagnostic V2.1b        "
  30. print " [F6] Windows Memory Diagnostic          [1] TestMem4                           "
  31. print " [F7] ctramtest V5.1                                                            "
  32. print "                                                                                "
  33. set textColor = color[yellow on cyan]
  34. print " Peripherals Test                                                               "
  35. set textColor = color[white on cyan]
  36. print "  [2] Parallel V1.45                     [3] ATAPI CDROM Identification V2.03   "
  37. print "  [4] CHZ Monitor-Test V1.0                                                     "
  38. print "                                                                                "
  39. print "                                                                                "
  40. print "                                                                                "
  41. set textColor = color[white on blue]
  42. print "    Left/right arrow key for previous/next screen. ESC returns to main menu.    "
  43. set textColor = color[white on black]
  44.  
  45. #
  46. # Actions
  47. #
  48. getkey
  49. clear
  50. if ($lastKey == key[f1]); then isolinux memdisk initrd=/images/freedos.img ubcdcmd=lucifer
  51. if ($lastKey == key[f2]); then memdisk /images/cpuburn.igz
  52. if ($lastKey == key[f3]); then memdisk /images/mprime.igz
  53. if ($lastKey == key[f4]); then memdisk /images/memtest.igz
  54. if ($lastKey == key[f5]); then memdisk /images/memtestp.igz
  55. if ($lastKey == key[f6]); then diskemu /images/windiag.img ## Won't boot using memdisk
  56. if ($lastKey == key[f7]); then isolinux memdisk initrd=/images/freedos.img ubcdcmd=ctram
  57. if ($lastKey == key[f8]); then memdisk /images/docmem1.igz
  58. if ($lastKey == key[f9]); then memdisk /images/docmem2.igz
  59. if ($lastKey == key[1]); then memdisk /images/tm4.igz
  60. if ($lastKey == key[2]); then isolinux memdisk initrd=/images/freedos.img ubcdcmd=parallel
  61. if ($lastKey == key[3]); then isolinux memdisk initrd=/images/freedos.img ubcdcmd=atapicd
  62. if ($lastKey == key[4]); then memdisk /images/tfttest.igz
  63. if ($lastKey == key[right]); then script mboard2.scn
  64. if ($lastKey == key[esc]); then script main.scn
  65. goto mainboard_menu
  66.